home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ARM / VGA.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  180b  |  12 lines

  1. #ifndef ASMARM_VGA_H
  2. #define ASMARM_VGA_H
  3.  
  4. #include <asm/io.h>
  5.  
  6. #define VGA_MAP_MEM(x)    (0xe0000000 + (x))
  7.  
  8. #define vga_readb(x)    (*(x))
  9. #define vga_writeb(x,y)    (*(y) = (x))
  10.  
  11. #endif
  12.